home *** CD-ROM | disk | FTP | other *** search
/ Aminet 41 / Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso / Aminet / game / think / newmasterm_src.lha / newmastermind / panelgadget.h < prev    next >
C/C++ Source or Header  |  2000-11-06  |  468b  |  25 lines

  1. /*
  2.  * panelgadget.h
  3.  * =============
  4.  * The panel gagdet.
  5.  *
  6.  * Copyright (C) 1994-2000 Håkan L. Younes (lorens@hem.passagen.se)
  7.  */
  8.  
  9. #ifndef PANELGADGET_H
  10. #define PANELGADGET_H
  11.  
  12. #include <exec/types.h>
  13. #include <utility/tagitem.h>
  14. #include <intuition/classes.h>
  15.  
  16.  
  17. #define PANEL_Dummy         (TAG_USER + 0)
  18. #define PANEL_NumColors     (PANEL_Dummy + 1)
  19. #define PANEL_ActiveColor   (PANEL_Dummy + 2)
  20.  
  21.  
  22. extern Class *CreatePanelClass(VOID);
  23.  
  24. #endif /* PANELGADGET_H */
  25.